home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / dobbs / v16n10 / actor.exe / EXTEND.LOD < prev    next >
Encoding:
Text File  |  1991-09-17  |  1.2 KB  |  35 lines

  1. /* EXTEND.LOD - Actor development extensions load file
  2.  *
  3.  * Copyright(C) 1991 Steve Hatchett.  All rights reserved.
  4.  *    Steve Hatchett          14352 Mussey Grade Rd.
  5.  *    CIS: 70304,1423         Ramona, CA 92065
  6.  *
  7.  * Use this file to load the development environment
  8.  * extensions for use with the Actor programming
  9.  * language.
  10.  *     load("extend.lod");
  11.  *     load();
  12.  */
  13. #define MAXSOURCENEST 5;      /* max directory nesting */
  14. Actor[#Programmer] := "   ";  /* set this in workspace */
  15. Actor[#StampText]  := "Stamp";/* time stamp header.  Another
  16.                                * useful stamp header would be
  17.                                * "Copyright (C) 1991 XYZ, Inc."*/
  18. LoadFiles :=
  19. {
  20. /* Your path may be different. */
  21.   load(new(SourceFile),"c:\actor\general\classes\string.clx");
  22.   load(#("classes\extsource.cls"
  23.          "c:\actor\general\classes\symbol.clx"));
  24.  
  25. /* The minimum code necessary to navigate the directory
  26.  * hierarchy has now been loaded, paths are no longer needed.
  27.  */
  28.   do(#(Behavior Browser ClassDialog ClVarDialog  Function
  29.        SourceFile System ToolWind WorkEdit), {using(cl)
  30.     loadExtensions(cl);
  31.   });
  32. }
  33. !!
  34. 
  35.